home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
BORL_TIP
/
TI100
/
TI231.ASC
< prev
next >
Wrap
Text File
|
1991-09-11
|
4KB
|
199 lines
PRODUCT : TURBO PASCAL NUMBER : 231
VERSION : 2.00A
OS : CP/M-80
DATE : February 21, 1986 PAGE : 1/3
TITLE : SKIP "INCLUDE ERROR MESSAGES?" PROMPT - CP/M-80
This patch automatically responds to the "Include Error
Messages?" prompt and proceeds to either load or exclude the
error messages (whatever is specifed by the patch you apply). The
message still appears, but does not wait for an answer.
Use the CP/M utility, DDT, (instructions for ZSID are on page 3)
to apply the following patch to a copy of your original .COM
file. Copy DDT.COM into the directory (or onto the diskette)
where your working copy of your .COM file is located. At the
prompt, type the following information exactly as it appears.
Note:
1. DDT is not sensitive to upper and lower case. all addresses
are listed in upper case for ease of readability.
2. While using DDT, the prompt will appear as a dash (-).
3. If you do not receive the appropriate response, press
<Ctrl>C followed by <Return>, to quit. Check your version
numbers and, if correct, try again.
The following creates a file named TURNO.COM which you should use
if you never want to load the error messages.
TURBO.COM - "NO" - MESSAGES NOT INCLUDED
YOU TYPE THIS APPEARS
DDT TURBO.COM DDT TURBO.COM
NEXT PC
7800 0100
-
a210A<Enter> 210A
xra a<Enter> 210B
jmp 212C<Enter> 210E
.<Enter> -
<Ctrl>C<Enter> DOS prompt
save 119 TURNO.COM<Enter>
The following creates a file names TURYES.COM which you should
use to always include error messages.
PRODUCT : TURBO PASCAL NUMBER : 231
VERSION : 2.00A
OS : CP/M-80
DATE : February 21, 1986 PAGE : 2/3
TITLE : SKIP "INCLUDE ERROR MESSAGES?" PROMPT - CP/M-80
TURBO.COM - "YES" - MESSAGES INCLUDED
YOU TYPE THIS APPEARS
DDT TURBO.COM DDT TURBO.COM
NEXT PC
7800 0100
-
a210A 210A
ori ff<Enter> 210C
jmp 212C<Enter> 210F
.<Enter> -
<Ctrl>C<Enter> DOS prompt
save 119 TURYES.COM<Enter>
If you are using the ZSID file to modify the code:
The following creates a file named TURNO.COM which you should use
if you never want to load the error messages.
TURBO.COM - "NO" - MESSAGES NOT INCLUDED
YOU TYPE THIS APPEARS
DDT TURBO.COM DDT TURBO.COM
NEXT PC
7800 0100
-
a210A 210A
xor a,a<Enter> 210B
jp 212C<Enter> 210E
.<Enter> -
<Ctrl>C<Enter> DOS prompt
save 119 TURYES.COM
The following creates a file names TURYES.COM which you should
use to always include error messages.
TURBO.COM - "YES" - MESSAGES INCLUDED
PRODUCT : TURBO PASCAL NUMBER : 231
VERSION : 2.00A
OS : CP/M-80
DATE : February 21, 1986 PAGE : 3/3
TITLE : SKIP "INCLUDE ERROR MESSAGES?" PROMPT - CP/M-80
YOU TYPE THIS APPEARS
DDT TURBO.COM DDT TURBO.COM
NEXT PC
7800 0100
-
a210A 210A
or a,ff<Enter> 210C
jp 212C<Enter> 210F
.<Enter> -
<Ctrl>C<Enter> DOS prompt
save 119 TURYES.COM<Enter>